home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP06 / CONNECT.C < prev    next >
C/C++ Source or Header  |  1995-12-31  |  4KB  |  109 lines

  1. /*--------------------------------------------------
  2.    CONNECT.C -- Connect-the-Dots Mouse Demo Program
  3.                 (c) Charles Petzold, 1996
  4.   --------------------------------------------------*/
  5.  
  6. #include <windows.h>
  7.  
  8. #define MAXPOINTS 1000
  9. #define MoveTo(hdc, x, y) MoveToEx (hdc, x, y, NULL)
  10.  
  11. LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
  12.  
  13. int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  14.                     PSTR szCmdLine, int iCmdShow)
  15.      {
  16.      static char szAppName[] = "Connect" ;
  17.      HWND        hwnd ;
  18.      MSG         msg ;
  19.      WNDCLASSEX  wndclass ;
  20.  
  21.      wndclass.cbSize        = sizeof (wndclass) ;
  22.      wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
  23.      wndclass.lpfnWndProc   = WndProc ;
  24.      wndclass.cbClsExtra    = 0 ;
  25.      wndclass.cbWndExtra    = 0 ;
  26.      wndclass.hInstance     = hInstance ;
  27.      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
  28.      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
  29.      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
  30.      wndclass.lpszMenuName  = NULL ;
  31.      wndclass.lpszClassName = szAppName ;
  32.      wndclass.hIconSm       = LoadIcon (NULL, IDI_APPLICATION) ;
  33.  
  34.      RegisterClassEx (&wndclass) ;
  35.  
  36.      hwnd = CreateWindow (szAppName, "Connect-the-Points Mouse Demo",
  37.                           WS_OVERLAPPEDWINDOW,
  38.                           CW_USEDEFAULT, CW_USEDEFAULT,
  39.                           CW_USEDEFAULT, CW_USEDEFAULT,
  40.                           NULL, NULL, hInstance, NULL) ;
  41.  
  42.      ShowWindow (hwnd, iCmdShow) ;
  43.      UpdateWindow (hwnd) ;
  44.  
  45.      while (GetMessage (&msg, NULL, 0, 0))
  46.           {
  47.           TranslateMessage (&msg) ;
  48.           DispatchMessage (&msg) ;
  49.           }
  50.      return msg.wParam ;
  51.      }
  52.  
  53. LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
  54.      {
  55.      static POINT points[MAXPOINTS] ;
  56.      static int   iCount ;
  57.      HDC          hdc ;
  58.      PAINTSTRUCT  ps ;
  59.      int          i, j ;
  60.  
  61.      switch (iMsg)
  62.           {
  63.           case WM_LBUTTONDOWN :
  64.                iCount = 0 ;
  65.                InvalidateRect (hwnd, NULL, TRUE) ;
  66.                return 0 ;
  67.  
  68.           case WM_MOUSEMOVE :
  69.                if (wParam & MK_LBUTTON && iCount < 1000)
  70.                     {
  71.                     points[iCount  ].x = LOWORD (lParam) ;
  72.                     points[iCount++].y = HIWORD (lParam) ;
  73.  
  74.                     hdc = GetDC (hwnd) ;
  75.                     SetPixel (hdc, LOWORD (lParam), HIWORD (lParam), 0L) ;
  76.                     ReleaseDC (hwnd, hdc) ;
  77.                     }
  78.                return 0 ;
  79.  
  80.           case WM_LBUTTONUP :
  81.                InvalidateRect (hwnd, NULL, FALSE) ;
  82.                return 0 ;
  83.  
  84.           case WM_PAINT :
  85.                hdc = BeginPaint (hwnd, &ps) ;
  86.  
  87.                SetCursor (LoadCursor (NULL, IDC_WAIT)) ;
  88.                ShowCursor (TRUE) ;
  89.  
  90.                for (i = 0 ; i < iCount - 1 ; i++)
  91.                     for (j = i + 1 ; j < iCount ; j++)
  92.                          {
  93.                          MoveTo (hdc, points[i].x, points[i].y) ;
  94.                          LineTo (hdc, points[j].x, points[j].y) ;
  95.                          }
  96.  
  97.                ShowCursor (FALSE) ;
  98.                SetCursor (LoadCursor (NULL, IDC_ARROW)) ;
  99.  
  100.                EndPaint (hwnd, &ps) ;
  101.                return 0 ;
  102.  
  103.           case WM_DESTROY :
  104.                PostQuitMessage (0) ;
  105.                return 0 ;
  106.           }
  107.      return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
  108.      }
  109.